home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / libgeoip1 / TODO < prev   
Text File  |  2009-02-24  |  2KB  |  55 lines

  1. Rutger Okhuizen 7/31/2006
  2.  
  3. Implement waiting algorithm for GEOIP_CHECK_CACHE,
  4. so stat is called on every lookup.
  5.  
  6. -----------------------
  7.  
  8. Maurice Cinquini
  9.  
  10. *** ifndef WIN32 on netdb.h ? ***
  11. In GeoIPCity.c you don't "#ifndef WIN32" the netdb.h include,
  12. but in GeoIP.c you do.á Which one is right?
  13.  
  14. *** Warnings in GeoIP-1.2.1 before I made changes ***
  15. GeoIPUpdate.c:73: warning: implicit declaration of function `_setup_dbfilename'
  16. ááá I suggest a GeoIP_private.h file to include prototypes for
  17. ááá _setup_dbfilename and other private functions also used by GeoIPCity.c
  18.  
  19. *** Drop the GeoIP_*_by_addr API calls ***
  20. And now that I think of it, why do you need a seperate
  21. GeoIP_region_by_addr and GeoIP_region_by_name since
  22. the later does the work of the former just as efficently.
  23. For backward compatibility you could #define GeoIP_region_by_addr
  24. to GeoIP_region_by_name
  25.  
  26.  
  27.  
  28.  
  29. Performance improvements suggested by Jason Linhart
  30. 1. cluster nodes to improve disk performance when using GEOIP_STANDARD
  31. 2. evaluate preformance of replacing binary tree with nodes containing 4 children
  32.  
  33. Write function to list countries, sorted by name.  Chris Gibbs contributed this which could be
  34. used:
  35.  
  36.  int GeoIP_country_sorted_index[246] = {
  37.   0, 5, 8, 61, 14, 3, 11, 7, 12, 6, 13, 9, 17, 1, 16, 15, 18, 32, 25, 21,
  38.  20,36, 22, 37, 27, 28, 33, 30, 19, 35, 34, 31, 104, 29, 24, 23, 26,
  39. 114, 47, 38, 52,121, 41, 207, 46, 48, 53, 39, 49, 116, 42, 40, 45,
  40.  50, 44, 97, 51, 54, 55, 58, 57, 59, 60, 216, 62, 64, 203, 87, 66,
  41.  63, 68, 2, 71, 73, 70, 69, 74, 75, 80, 170,208, 76, 84, 79, 56, 81,
  42. 82, 88, 83, 78, 86, 91, 90, 85, 92, 93, 98, 95, 228, 96,94, 99, 107,
  43.  103, 100, 106, 105, 101, 102, 108, 109, 111, 110, 122, 112, 115,
  44.  118,119, 120, 113, 123, 132, 124, 129, 128, 133, 126, 130, 131,
  45.  143, 139, 137,151,153, 150, 140, 148, 138, 145, 146, 149, 238,
  46.  152, 72, 136, 135, 142, 147, 134,154, 141, 155, 164, 163, 161,
  47. 10, 156, 166, 160, 157, 159, 165, 158, 144, 162, 167,173, 180,
  48. 178, 168, 171, 181, 169, 172, 176, 174, 179, 177, 182, 183, 184,
  49. 185,186, 193, 117, 125, 175, 229, 236, 198, 202, 187, 199, 189,
  50. 197, 192, 196,194,188, 200, 240, 89, 67, 127, 190, 201, 195, 205,
  51. 191, 43, 204, 220, 211, 221,210,209, 212, 215, 218, 214, 217,
  52. 213,206, 219, 223, 222, 4, 77, 225, 224, 226,227,234, 230, 233,
  53.  231,232, 235, 65, 237, 239, 242, 241, 243, 244, 245};
  54.  
  55.